home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / source.exe / POSIX / BSDPSX / INDEX.C < prev    next >
C/C++ Source or Header  |  1992-07-24  |  158b  |  14 lines

  1. /*
  2.  * Index:  Not Posix.  AOJ
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. char *index (s, c)
  8. char    *s, c;
  9. {
  10.     for ( ; *s && *s != c; s++ );
  11.     return *s ? s : NULL;
  12. }
  13.  
  14.